home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / wtj208.zip / FRANTZ / CPP / CTARGET.H < prev    next >
C/C++ Source or Header  |  1993-04-11  |  1KB  |  62 lines

  1. // target.h : main header file for the TARGET application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CTargetApp:
  12. // See target.cpp for the implementation of this class
  13. //
  14.  
  15. class CTargetApp : public CWinApp
  16. {
  17. public:
  18.     CTargetApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.     virtual int Run();
  23.  
  24. // Implementation
  25.  
  26.     //{{AFX_MSG(CTargetApp)
  27.     //}}AFX_MSG
  28.     DECLARE_MESSAGE_MAP()
  29. };
  30.  
  31. /////////////////////////////////////////////////////////////////////////////
  32. // VB-Event extern declarations
  33.  
  34. //{{AFX_VBX_REGISTER()
  35. //}}AFX_VBX_REGISTER
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CDlg dialog
  40.  
  41. class CDlg : public CDialog
  42. {
  43. // Construction
  44. public:
  45.     CDlg(CWnd* pParent = NULL);    // standard constructor
  46.  
  47. // Dialog Data
  48.     //{{AFX_DATA(CDlg)
  49.     enum { IDD = IDD_DIALOG };
  50.     CVBControl*    m_target;
  51.     //}}AFX_DATA
  52.  
  53. // Implementation
  54. protected:
  55.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  56.  
  57.     // Generated message map functions
  58.     //{{AFX_MSG(CDlg)
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.